﻿* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Instrument Sans", sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    background-image: url('../../_assets/images/RyanLogoBG_3.png');
    background-size: cover;
    color: white;
}

h1 {
    text-align: center;
    width: 100%;
    margin-top: 80px;
    margin-bottom: -20px;
    z-index: 1000;
    font-size: 40px;
}

h2 {
    margin-top: 80px;
    color: #ccc; 
    font-size: 15px; 
    font-weight: 50;
    margin: 20px;
}

.menu {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 50px;
    left: 15px;
    width: 200px;
    text-align: center;
    padding: 15px 0;
    border-radius: 8px;
}

.menu.show {
    display: flex;
}

.menu a {
    display: block;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 10px;
    transition: background 0.3s;
}

.menu a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.bubble {
    display: flex;
    justify-content: center;  
    align-items: center;      
    background: #222;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    width: 75%; 
}

.container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    width: 100%;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.carousel {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.carousel-container button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(220, 220, 220, 0.4);
    border: none;
    color: white;
    font-size: 24px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.carousel-container button:hover {
    background: rgba(255, 255, 255, 0.5);
}
#prev {
    left: 10px;
}

#next {
    right: 10px;
}

.carousel-content {
    width: 100%;
    text-align: center;
    margin-top: 15px;
}

#page-wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;  /* this is what actually centers your content */
}

p {
    font-size: 16px;
    color: #ccc;
}

.side-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}


h4 {
    width: 100%;
    height: auto;
    padding: 10px;
    border-radius: 8px;
    border: none;
    background: #333;
    color: white;
    font-weight: normal;
    font-size: 16px;
}

.side-text a {
    width: 100%;
    height: auto;
    color: rgb(206, 154, 255);
    font-weight: bold;
    font-size: 16px;
}

.side-text a:hover {
    width: 100%;
    height: auto;
    color: rgb(195, 130, 255);
    font-weight: bold;
    transition: 0.3s;
}


label {
    font-weight: bold;
    font-size: 18px;
    color: #fff;
}

@media (max-width: 1350px) {
    .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 20px;
    }

    .carousel-container {
        width: 100%;
        max-width: 100%;
    }

    .side-text {
        width: 100%;
        align-items: center;
        text-align: left;
        margin-right: 0;
    }
    .bubble {
        width: 95%;
    }
}

footer {
    position: relative;
    margin-top: auto;
    width: 100%;
    text-align: center;
    padding: 10px;
    color: white;
}
